Control flow - определение. Что такое Control flow
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое Control flow - определение

ORDER IN WHICH INDIVIDUAL STATEMENTS, INSTRUCTIONS OR FUNCTION CALLS OF AN IMPERATIVE PROGRAM ARE EXECUTED OR EVALUATED
Program loop; Control structure; Program flow; Control structures; Exitwhen; Continue (Java); Loop index; Flow of control; Counter controlled loops; Count controlled loop; Loop (computing); Loop (programming); Until loop; Program loops; Control construct; Break statement; Break statements; Break (Unix); Continue (keyword); Control statement; Flow control construct; Nested loop; Continue statement; Control variable (programming); Control flow architecture; Control-flow architecture; Control-flow; Break;; Control flow statement; Control-flow statement; Controlflow; Control flag; Program flow of control; Program control flow; Minimal structured control flow
  • A [[state diagram]] of a peptide ion mass mapping search process.
Найдено результатов: 3237
control flow         
<programming> (Or "flow of control") The sequence of execution of instructions in a program. This is determined at run time by the input data and by the control structures (e.g. "if" statements) used in the program. Not to be confused with "flow control". (1997-09-14)
Control flow         
In computer science, control flow (or flow of control) is the order in which individual statements, instructions or function calls of an imperative program are executed or evaluated. The emphasis on explicit control flow distinguishes an imperative programming language from a declarative programming language.
flow of control         
control structure         
<programming> One of the instructions, statements or groups of statements in a programming language which determines the sequence of execution of other instructions or statements (the control flow). In assembly language this typically consists of jumps and conditional jumps along with procedure call and return though some architectures include other constructs such as an instruction which skips the following instruction depending on some condition (PDP?), various kinds of loop instructions (later Motorola 680x0) or conditional execution of all instructions (Advanced RISC Machine). Basic control structures (whatever their names in particular languages) include "if CONDITION then EXPRESSION else EXPRESSION", the switch statement, "while CONDITION do EXPRESSION", "gosub", the suspect "goto" and the much-feared "come from". Other constructs handle errors and exceptions such as traps and interrupts. (1997-09-14)
Control variable (programming)         
In computer programming, a control variable is a program variable that is used to regulate the flow of control of the program.
break statement         
<programming> A statement in the C programming language that transfers control out of the innermost enclosing switch, while, do, or for statement. The statement also exists in languages derived from C, such as C++ and Java. (2004-03-24)
Flow control (fluid)         
  • Hydraulic Flow controller
FLUIDS
Active flow control
Flow control is a major rapidly-evolving field of fluid dynamics. It implies a small change of a configuration serving an ideally large engineering benefit, like drag reduction, lift increase, mixing enhancement or noise reduction.
Flow control (data)         
MANAGEMENT OF DATA RATE
Modem flow control; Hardware flow control
In data communications, flow control is the process of managing the rate of data transmission between two nodes to prevent a fast sender from overwhelming a slow receiver. Flow control should be distinguished from congestion control, which is used for controlling the flow of data when congestion has actually occurred.
flow control         
WIKIMEDIA DISAMBIGUATION PAGE
Transmit flow control; Flow Control; Flow control (disambiguation); Flow Control (disambiguation)
<communications, protocol> The collection of techniques used in serial communications to stop the sender sending data until the receiver can accept it. This may be either {software flow control} or hardware flow control. The receiver typically has a fixed size buffer into which received data is written as soon as it is received. When the amount of buffered data exceeds a "high water mark", the receiver will signal to the transmitter to stop transmitting until the process reading the data has read sufficient data from the buffer that it has reached its "low water mark", at which point the receiver signals to the transmitter to resume transmission. (1995-03-22)
Control-flow integrity         
TERM IN COMPUTER SECURITY
Draft:Control-flow integrity; Control Flow Guard; Control-flow Enforcement Technology; Control-flow enforcement technology; Intel Control-flow Enforcement Technology; Intel control-flow enforcement technology; Intel CET
Control-flow integrity (CFI) is a general term for computer security techniques that prevent a wide variety of malware attacks from redirecting the flow of execution (the control flow) of a program.

Википедия

Control flow

In computer science, control flow (or flow of control) is the order in which individual statements, instructions or function calls of an imperative program are executed or evaluated. The emphasis on explicit control flow distinguishes an imperative programming language from a declarative programming language.

Within an imperative programming language, a control flow statement is a statement that results in a choice being made as to which of two or more paths to follow. For non-strict functional languages, functions and language constructs exist to achieve the same result, but they are usually not termed control flow statements.

A set of statements is in turn generally structured as a block, which in addition to grouping, also defines a lexical scope.

Interrupts and signals are low-level mechanisms that can alter the flow of control in a way similar to a subroutine, but usually occur as a response to some external stimulus or event (that can occur asynchronously), rather than execution of an in-line control flow statement.

At the level of machine language or assembly language, control flow instructions usually work by altering the program counter. For some central processing units (CPUs), the only control flow instructions available are conditional or unconditional branch instructions, also termed jumps.